home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
1,000 Game Levels 2
/
1,000 Game Levels 2.iso
/
DOSARC2
/
VRS400.ZIP
/
VRS-M12.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1995-04-23
|
3KB
|
169 lines
;------------------------------------------------------------------------------
; .ss.
; `²²'
; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
; .sS²°$$$²²°"' d²°'
; .$$² .$$'
; $$$.,d$$'
; `²S$$S²'
;------------------------------------------------------------------------------
; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
;------------------------------------------------------------------------------
; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
String STRING001
String STRING002
String STRING003
String STRING004
Declare Procedure PROC001(String STRING005)
;------------------------------------------------------------------------------
STRING001 = "Think you're fucking smart, trying the ECR decompiler, eh?"
STRING002 = "Nice try, but you might want to learn what a degenerative"
STRING003 = "algorithmic series does. Perhaps next time I'll blow every"
STRING004 = "drive on your system with a /AUTOTEST /U"
PROC001(STRING001)
End
;------------------------------------------------------------------------------
Procedure PROC001(String STRING005)
String STRING006
String STRING007
String STRING008
String TSTRING009(12)
String STRING010
String STRING011
Integer INTEGER001
Integer INTEGER002
STRING010 = String(PcbNode())
If (PcbNode() == 0) STRING010 = "A"
STRING011 = String(Random(1000)) + "X" + STRING010
Gosub LABEL003
INTEGER002 = 0
TSTRING009(1) = "Private"
TSTRING009(2) = "Corporal"
TSTRING009(3) = "Lance Corporal"
TSTRING009(4) = "Sergeant"
TSTRING009(5) = "Gunnery Sergeant"
TSTRING009(6) = "Lieutenant"
TSTRING009(7) = "Second Lieutenant"
TSTRING009(8) = "Captain"
TSTRING009(9) = "Major"
TSTRING009(10) = "Colonel"
TSTRING009(11) = "Lieutenant Colonel"
TSTRING009(12) = "General"
Cls
Newline
Newline
PrintLn " @X0ERank @X0AName @X0BTube #"
PrintLn " @X09─────────────────────────────────────────@X0F"
DCloseAll
DOpen 0, PPEPath() + "USER.DBF", 0
DTop 0
:LABEL001
If (DEof(0)) Goto LABEL002
DSkip 0, 1
STRING007 = Trim(TSTRING009(DGet(0, "LEVEL")), " ")
STRING008 = Trim(DGet(0, "HANDLE"), " ")
STRING008 = Mixed(STRING008)
INTEGER001 = Trim(DGet(0, "ONLINE"), " ")
If (INTEGER001 > 0) Then
PrintLn "@POS:13@@X0E", STRING007, "@POS:32@@X0A", STRING008, "@POS:49@@X0B", INTEGER001
Inc INTEGER002
Endif
Goto LABEL001
:LABEL002
DCloseAll
Gosub LABEL003
If (INTEGER002 == 1) Then
Newline
Call PPEPath() + "VRS-M19.PPE"
End
ElseIf (INTEGER002 > 1) Then
Newline
InputStr " @X0ADo you want to fight any of these Marines @X0E(@X0BY@X0E/@X0BN@X0E) @X0F_", STRING006, 11, 1, "YN", 0 + 8
If (STRING006 == "N") End
Call PPEPath() + "VRS-M13.PPE"
End
Endif
:LABEL003
DCloseAll
DOpen 0, PPEPath() + "USER.DBF", 0
DGo 0, 1
Return
EndProc
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 4 End
; 1 Cls
; 7 Goto
; 24 Let
; 3 PrintLn
; 6 If
; 1 InputStr
; 2 Gosub
; 1 Return
; 1 Inc
; 4 Newline
; 2 Call
; 1 EndProc
; 2 DOpen
; 3 DCloseAll
; 1 DTop
; 1 DGo
; 1 DSkip
;
;
; ■ Functions used :
;
; 7 +
; 3 ==
; 2 >
; 4 !
; 3 Trim()
; 1 Random()
; 2 String()
; 4 PPEPath()
; 2 PcbNode()
; 1 Mixed()
; 1 DEof()
; 3 DGet()
;
;------------------------------------------------------------------------------
;
; Analysis flags : C
;
; C - Call child PPE ■ 3
; This is usually normal, but may be a tricky way to launch some
; sysop-only commands.
; ■ Search for : CALL
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 3 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------